This forum is closed to new posts and
responses. Individual names altered for privacy purposes. The information contained in this website is provided for informational purposes only and should not be construed as a forum for customer support requests. Any customer support requests should be directed to the official HCL customer support channels below:
~Zach Breweoden 26.Jan.04 04:42 PM a Web browser Domino Designer6.5Windows 2000
This agent in R5 works fine.
Dim session As New NotesSession
Dim db As NotesDatabase
Dim view As notesView
Dim VEntry As NotesViewEntry
Set db = session.CurrentDatabase
Set view = db.GetView("NPK")
Set VEntry = View.GetEntryByKey( "2004", True)
If VEntry Is Nothing Then
Print | Entry not found |
Else
Print VENtry.ColumnValues(0)
End If
But in R6.5 I get "Entry no found".
User can't see document but he can see category. I always use this technique to get same
values from documents, when user can't see some documents.
I rather think that Lotus change something in class NotesViewEntry, but I can't find any reference in Help or FixList databases.